Bonbon
Content
FAQ
Landing pages sections
Link family
Link product
Listing HowTo
Menu footer
Menu header
News
Page FAQ
Produits
Resellers
Sections
Wording

Listing HowTo

		
<?php
$tbe_lht_image = get_field('tbe_lht_image');
$tbe_lht_title_red = get_field('tbe_lht_title_red');
$tbe_lht_title = get_field('tbe_lht_title');
?>
<?php if ($tbe_lht_image){
$image = '';
$image = $tbe_lht_image;
if( !empty($image) ){
$size = 'thumbnail';
$thumb = '';
$width = '';
$height = '';
$thumb = $image['sizes'][$size];
$width = $image['sizes'][$size . '-width'];
$height = $image['sizes'][$size . '-height'];
?>
<img class='feature-img' alt='' width='<?php echo $width; ?>' height='<?php echo $height; ?>' src='<?php echo $thumb; ?>'/>
<?php
}
}
?>
<?php if ($tbe_lht_title_red){ ?>
<?php echo $tbe_lht_title_red; ?>
<?php } ?>
<?php if ($tbe_lht_title){ ?>
<?php echo $tbe_lht_title; ?>
<?php } ?>